home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Monster Media 1996 #15
/
Monster Media Number 15 (Monster Media)(July 1996).ISO
/
prog_pas
/
cddk9605.zip
/
TUTOR.ZIP
/
TUTOR2.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-05-16
|
584b
|
30 lines
PROGRAM Tutor2;
{$A+,B-,F+,I-,Q-,R-,S-,X+}
USES
Concerto, IO, Scripts;
BEGIN
{ The next two procedures are explained in TUTOR1.PAS }
RegisterConcerto;
Script('Init');
{ The next procedure displays the specified file. The default
extension is ANS. Since Concerto provides runtime conversion
and optimization of color codes (including Color->ASCII conversion)
there is no need for the multi-extension system used by some
BBS packages. }
SO_DisplayFile('Welcome2');
{ The next procedure is explained in TUTOR1.PAS }
ExitDoor(0);
END.